Code
Text("Hello, World!")
.frame(maxWidth: .infinity, alignment: .leading)
.padding(.top, padding)
.font(.body)
.font(Font.custom("Arial Rounded MT Bold", size: 18))
.fontWeight(.bold)
.foregroundColor(Color.red)
.shadow(color: Color.black, radius: 2, x: 2, y: 2)
View
This is useful when using Text as NavigationLink inside NavigationView when Text View actually performs like a button.
Code
Text("SwiftUI")
.font(.title)
.padding(10.0)
.background(Color.blue)
.foregroundColor(Color.white)
.cornerRadius(18.0)
View